Spread Windows Forms 15.0
GrapeCity.Win.PluginInputMan Assembly / GrapeCity.Win.Spread.InputMan.CellType Namespace / CollectionBase<T> Class / Remove Method
The T to remove from the collection.


In This Topic
    Remove Method (CollectionBase<T>)
    In This Topic
    Removes the specified T from the collection.
    Syntax
    'Declaration
     
    
    Public Sub Remove( _
       ByVal value As T _
    ) 
    'Usage
     
    
    Dim instance As CollectionBase(Of T)
    Dim value As T
     
    instance.Remove(value)
    public void Remove( 
       T value
    )

    Parameters

    value
    The T to remove from the collection.
    Exceptions
    ExceptionDescription
    The specified object is not found in the collection.
    See Also